home *** CD-ROM | disk | FTP | other *** search
- property mys, x, y, z, mywidth, myheight, xadd, yadd, zadd, rx, ry, rz, mymember, mdown, this
- global scale, xoff, yoff, zoff
-
- on beginSprite me
- mys = me.spriteNum
- rx = 0
- ry = 0
- rz = 0
- xadd = 0
- yadd = 0
- zadd = 0
- zoff = 100
- scale = 250
- xoff = ((the stage).rect[3] - (the stage).rect[1]) / 2
- mymember = the member of sprite mys
- mywidth = (the member of sprite mys).width
- myheight = (the member of sprite mys).height
- x = random(1000) * [1, -1][random(2)]
- y = random(1000)
- z = random(700)
- mdown = random(5) + 3
- this = z / 100
- end
-
- on exitFrame me
- if y < -1000 then
- y = random(100) + yoff + 500
- mdown = random(5) + 3
- x = random(1000) * getAt(list(1, -1), random(2))
- z = random(700)
- this = z / 100
- end if
- x = x + sin(this)
- this = this + 0.01
- y = y - mdown
- mz = z + zoff + zadd
- if mz = 0 then
- mz = 0.00000001
- end if
- xp = x * scale / mz
- yp = y * scale / mz
- set the locH of sprite mys to xp + xoff
- set the locV of sprite mys to yoff - yp
- set the width of sprite mys to mywidth * scale / mz * 1.5
- set the height of sprite mys to myheight * scale / mz * 1.5
- end
-